home *** CD-ROM | disk | FTP | other *** search
/ Tech Win 1995 November / CD [TECH_B].bin / tech_b / delphi / trial / disk11 / twoforms.pak / TWOFORMS.DPR < prev    next >
Encoding:
Text File  |  1995-08-08  |  201 b   |  14 lines

  1. program Twoforms;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1},
  6.   Details in 'DETAILS.PAS' {DetailView};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.